home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Prog / D-G / FORTRAN Goodies / *About FORTRAN Goodies next >
Encoding:
Text File  |  1993-02-10  |  3.9 KB  |  73 lines  |  [TEXT/MPS ]

  1. **********************************************************************
  2. FORTRAN Goodies - A selection of files from the Language Systems BBS. 
  3. **********************************************************************
  4.  
  5. Asin.txt           8/27/90   Simple XFCN in FORTRAN
  6. This arcsin XFCN can be called from a HyperCard stack for faster calculation than is 
  7. possible with HyperTalk.
  8.  
  9. CallAd.txt                    11/3/92  Calling by Address
  10. An example of how to call a routine by finding the address of any routine, passing the 
  11. address to a dispatch routine and calling the original routine using the passed address.
  12.  
  13. ChangeFilename.txt       11/19/90   Script to change file name extensions
  14. Changes the file name extension of all files in the current directory. Takes 2 arguments, the 
  15. old and the new extensions.  Example: changefilenames for f
  16.  
  17. DynArray.txt        11/3/92  Dynamic allocation of Arrays
  18. This is an example of how to dynamically allocate an array using FORTRAN and toolbox calls.
  19.   
  20. FORTRAN Macros for EXCEL          01/31/92 Excel Macros calling FORTRAN resources
  21. Source code and corresponding resources for Excel macros that illustrate using each of the 
  22. Excel Data Types in FORTRAN code resources. In general these macros are useful only as 
  23. examples to create your own macros and code resources.
  24.  
  25. FORTRAN Speaks       7/31/90   Make FORTRAN talk back!
  26. Make your FORTRAN program talk back to you. Demonstrates calling the MacInTalk speech 
  27. driver from FORTRAN. **DOES NOT INCLUDE MACINTALK ITSELF**
  28.  
  29. Launch Library        12/03/91 A library call for launching applications
  30. This includes a library and a sample program to call the library. It launches applications 
  31. under both Systems 6 and 7.  The source code is more recent than the compiled version.
  32.   
  33. MenuTrix.txt        1/17/91  How to customize output window menus.
  34. This example shows how to add styled text and command key equivalents.
  35.  
  36. NewRes.txt            11/3/92  Resource Editing with FORTRAN
  37. An example of how to use Toolbox calls to create, write to, and read from the resource fork 
  38. of a file. ResEdit or some sort of resource editor may be useful for viewing the file you 
  39. create.
  40.  
  41. Path.txt               8/15/91  Finds the full path name of a file.
  42. This example uses the System 7 call FSMakeFSSpec to determine the full source path of the 
  43. chosen file.  This code only runs under System 7 and requires the latest includes and inlines 
  44. files.  
  45.  
  46. PcallsF        12/7/90 An Example of MPW Pascal calling FORTRAN
  47. Sample program showing the different ways Pascal can call FORTRAN subroutines and 
  48. functions.  This example also shows how to access a FORTRAN static COMMON from within a 
  49. Pascal routine.
  50.  
  51. QuickTime.SEA                    11/3/92     Preliminary QuickTime Interface Files
  52. New interface files that include definitions for Quicktime Toolbox calls. Also included are 
  53. updated RawInlines with Quicktime traps defined. This file is a self-extracting archive.
  54.   
  55. ReadAllFiles.txt      11/19/90  Make an array of all files in a folder
  56. Use File=* to let the user select a file in the target folder, then make an array of all file 
  57. names in that folder.  You can easily add filtering to select a subset of the files.
  58.  
  59. SetVol.txt            01/31/92  Manipulating directories within a FORTRAN program
  60. SetVolume.f is an example of how to use SetVolume and other Language System functions 
  61. to manipulate which folder data files are written to. 
  62.  
  63. Stack.txt             01/07/92  How to change your applications stack size
  64. This program demonstrates how a FORTRAN program can enlarge its own stack.  Three 
  65. toolbox calls are used: StackSpace, GetApplLimit, and SetApplLimit.
  66.  
  67. String Utilities       12/7/90 Routines for manipulating strings.
  68. A collection of files that will let you do interesting things with strings.
  69.  
  70. WindowTrix.txt       11/19/90   Various neat tricks with the window
  71. This example program show how you can 1) save the text in the output window to a 
  72. prenamed file, 2) find out how many characters are highlighted in the window, and 3) save 
  73. the highlighted text.